home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_gen_makebreath.cog < prev    next >
Text File  |  1999-11-15  |  853b  |  54 lines

  1. # Jones 3D Cog Script
  2. #
  3. # gen_MakeBreath.cog
  4. #
  5. # [RT]
  6. #
  7. # Make Indy breath.
  8. #
  9. # (C) 1998 LucasArts Entertainment Company LLC. All Rights Reserved
  10. #
  11. # ===================================================================
  12.  
  13. symbols
  14.  
  15.     message        startup
  16.     message        pulse
  17.  
  18.     thing        indy        local
  19.  
  20.     template    tpl_Breath=+breath    local
  21.  
  22.     int            moveStatus            local
  23.  
  24. end
  25.  
  26. # ===================================================================
  27.  
  28. code
  29.  
  30. startup:
  31.  
  32.     indy = GetLocalPlayerThing();
  33.     SetPulse(3.0);
  34.     return;
  35.  
  36. # -------------------------------------------------------------------
  37.  
  38. pulse:
  39.  
  40.     # 0 = SITHPLAYERMOVE_STILL
  41.     # 1 = SITHPLAYERMOVE_WALKING
  42.     # 2 = SITHPLAYERMOVE_RUNNING
  43.     
  44.     moveStatus = GetMoveStatus(indy);
  45.     if ((moveStatus == 0) || (moveStatus == 1))
  46.     {
  47.         CreateThing(tpl_Breath, indy);
  48.     }
  49.  
  50.     return;
  51.  
  52. end
  53.  
  54.